-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support endpoint on every platform but centos/redhat 7 on arm #27256
Support endpoint on every platform but centos/redhat 7 on arm #27256
Conversation
Pinging @elastic/agent (Team:Agent) |
This pull request is now in conflicts. Could you fix it? 🙏
|
💚 Build Succeeded
Expand to view the summary
Build stats
Test stats 🧪
💚 Flaky test reportTests succeeded. 🤖 GitHub commentsTo re-run your PR in the CI, just comment with:
|
Endpoint is going to delay Linux ARM to 7.16. Its not quite there and we want to give it more time for testing and validation. This doesn't need to be merged to 7.15 |
This pull request is now in conflicts. Could you fix it? 🙏
|
1 similar comment
This pull request is now in conflicts. Could you fix it? 🙏
|
@@ -64,4 +64,4 @@ rules: | |||
- revision | |||
|
|||
when: length(${fleet}) > 0 and length(${inputs}) > 0 and hasKey(${output}, 'elasticsearch') | |||
constraints: ${runtime.arch} != 'arm64' | |||
constraints: ${runtime.arch} != 'arm64' and ${runtime.family} != 'redhat' and ${runtime.major} != '7' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why the runtime family/major constraints?
read the title
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For ARM, Endpoint won't even run on CentOS/RHEL 7 because the glibc version is too old for what Endpoint needs. CentOS/RHEL 7 is a generally supported distro by Endpoint though, so we want to specially handle this case.
(cherry picked from commit a1c6774)
#28449) (cherry picked from commit a1c6774) Co-authored-by: Michal Pristas <[email protected]>
What does this PR do?
Endpoint is planning to add ARM support for Linux in 7.16 (originally targeting 7.15). At the moment Agent refuses to install Endpoint on ARM for Linux. This PR relaxes that restriction and restricts Endpoint installation on CentOS/RHEL 7 for ARM
Why is it important?
Fixes: #27197
Checklist
CHANGELOG.next.asciidoc
orCHANGELOG-developer.next.asciidoc
.